DS.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / RowCollection Class / Insert Method / Insert(String[],Row) Method
An array of row cell texts. The size of the array determines the number of cells in the row.
The table row before which to insert new row. If null, the new row will be added to the end of the last table in the range.

In This Topic
Insert(String[],Row) Method
In This Topic
Inserts a Row into this collection before a specified row.
Syntax
'Declaration
 
Public Overloads Function Insert( _
   ByVal texts() As System.String, _
   ByVal before As Row _
) As Row
 

Parameters

texts
An array of row cell texts. The size of the array determines the number of cells in the row.
before
The table row before which to insert new row. If null, the new row will be added to the end of the last table in the range.

Return Value

The inserted Row.
See Also